GET api/Company/GetCity
获取城市列表
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"CID": "sample string 1",
"C_NAME": "sample string 2"
},
{
"CID": "sample string 1",
"C_NAME": "sample string 2"
},
{
"CID": "sample string 1",
"C_NAME": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfCityList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FunWorkAPI.Models">
<CityList>
<CID>sample string 1</CID>
<C_NAME>sample string 2</C_NAME>
</CityList>
<CityList>
<CID>sample string 1</CID>
<C_NAME>sample string 2</C_NAME>
</CityList>
<CityList>
<CID>sample string 1</CID>
<C_NAME>sample string 2</C_NAME>
</CityList>
</ArrayOfCityList>